home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / utilities / shells / csh / proto.h < prev    next >
C/C++ Source or Header  |  1995-03-17  |  6KB  |  227 lines

  1. /* main.c */
  2. int main(int argc, char **argv);
  3. void main_exit(int n);
  4. int breakcheck(void);
  5. int dobreak(void);
  6. long Chk_Abort(void);
  7. void _wb_parse(void);
  8. int do_howmany(void);
  9. void breakreset(void);
  10.  
  11. /* comm1.c */
  12. int do_sleep(void);
  13. int do_protect(void);
  14. int do_filenote(void);
  15. int do_cat(void);
  16. void get_drives(char *buf);
  17. char *drive_name(char *name);
  18. char *oneinfo( char *name, int function );
  19. int do_info(void);
  20. int do_dir(void);
  21. void lformat( char *s, char *d, struct file_info *info );
  22. int do_quit(void);
  23. int do_echo(void);
  24. int do_source(char *str );
  25. int do_pwd(void);
  26. int do_cd(void);
  27. char *quick_cd( char *buf, char *name, int repeat );
  28. int do_mkdir(void);
  29. int do_mv(void);
  30. int all_args( int (*action)FUNCARG(long,char*,char*), int dirs );
  31. int do_search(void);
  32. int do_rm(void);
  33. int do_history(void);
  34. int do_mem(void);
  35. int do_forline(void);
  36. int do_fornum(void);
  37. int do_foreach(void);
  38. int do_forever(char *str);
  39. int do_window(void);
  40. char *dates(struct DateStamp *dss, int flags);
  41. int do_date(void);
  42. void set_cwd(void);
  43.  
  44. /* comm2.c */
  45. int do_abortline(void);
  46. int do_return(void);
  47. int do_strhead(void);
  48. int do_strtail(void);
  49. int do_if(char *garbage, int com);
  50. int do_label(void);
  51. int do_goto(void);
  52. int do_inc(char *garbage, int com);
  53. int do_input(void);
  54. int do_ver(void);
  55. int do_ps(void);
  56. int do_copy(void);
  57. int do_touch(void);
  58. int do_addbuffers(void);
  59. int do_relabel(void);
  60. int do_diskchange(void);
  61. int dofunc(int id, char **av, int ac);
  62. int do_error( void );
  63.  
  64. /* comm3.c */
  65. int do_tee(void);
  66. int do_head(char *garbage, int com);
  67. void man(FILE *f, char *s);
  68. int do_man(void);
  69. int do_assign(void);
  70. char **expand_devs(void);
  71. int do_join(void);
  72. int do_strings(void);
  73. int do_open(void);
  74. int do_close(void);
  75. void myclose(int n);
  76. int do_fileslist(void);
  77. long extOpen(char *name, long mode);
  78. void extClose(long fh);
  79. int do_basename(void);
  80. int do_tackon(void);
  81. int do_resident(void);
  82. int loadres(char *s);
  83. int do_truerun(char *avline, int backflag);
  84. int exists(char *name);
  85. int mounted( char *str );
  86. int do_aset(void);
  87. int do_htype(void);
  88. int do_stack(void);
  89. int do_fault(void);
  90. int eval_rpn(char **av, int ac, int flag);
  91. int do_rpn(char *garbage, int ifflag);
  92. int do_path(void);
  93. int do_pri(void);
  94. int do_strleft(void);
  95. int do_strright(void);
  96. int do_strmid(void);
  97. int do_strlen(void);
  98. int myatoi(char *s, int mmin, int mmax);
  99. int unlatoi(char *s);
  100. int posatoi(char *s);
  101. int do_fltlower(void);
  102. int do_fltupper(void);
  103. int do_linecnt(void);
  104. int do_uniq(void);
  105. int do_rxsend(char *avline);
  106. int do_rxrec(void);
  107. int do_rxreturn(void);
  108. int do_waitport(void);
  109. int do_ascii(void);
  110. void appendslash(char *path);
  111. int do_whereis(void);
  112. int do_usage(void);
  113. int do_menu(void);
  114. void remove_menu(void);
  115. void set_menu(void);
  116. int do_getenv(void);
  117. int do_setenv(void);
  118. char **read_file(FILE *file, int *ac);
  119. void free_file(char **ptr);
  120. int do_qsort(void);
  121. int do_truncate(void);
  122. int do_split(void);
  123. int do_action( char *argline );
  124. int do_class( char *avline );
  125. int do_readfile( void );
  126. int do_writefile( void );
  127.  
  128. /* execom.c */
  129. void *mymalloc(int len);
  130. int exec_command(char *base);
  131. #ifndef isalphanum
  132. int isalphanum(char c);
  133. #endif
  134. char *exec_function(char *str, char **fav, int fac);
  135. int do_help(void);
  136. void exec_every(void);
  137. void show_usage(char *str);
  138. int do_exec(char *str);
  139. char *a0tospace(char *str);
  140. int execute( char *str );
  141. char *find_internal(char *str);
  142. int get_opt(char **av, int *ac, int ccno, int *err);
  143. int hasspace( char *s );
  144. int myfgets( char *buf, FILE *in );
  145.  
  146.  
  147. /* sub.c */
  148. int issep( char s );
  149. char *getclass(char *file);
  150. void seterr(int err);
  151. char *next_word(char *str);
  152. char *compile_av(char **av, int start, int end, char delim, int quote);
  153. void Free(void *ptr);
  154. void add_history(char *str);
  155. char *get_history(char *ptr);
  156. int find_history(char *ptr,int min);
  157. void replace_head(char *str);
  158. void pError(char *str);
  159. int ierror(char *str, int err);
  160. char *ioerror(int num);
  161. struct dirptr *dopen(char *name, int *stat);
  162. int dclose(struct dirptr *dp);
  163. int isdir(char *file);
  164. void free_expand(char **av);
  165. char **expand(char *base, int *pac);
  166. int newrecurse(int mask, char *name, int (*action)FUNCARG(long,char*,char*));
  167. char *strupr(char *s);
  168. char *strlwr(char *s);
  169. struct pattern *compare_preparse( char *wild, int casedep );
  170. int compare_ok( struct pattern *pat, char *name);
  171. void compare_free( struct pattern *pat );
  172. int compare_strings( char *pat, char *str, int casedep );
  173. void expand_all(char *name, FILE *file);
  174. int cmp(struct file_info *s1, struct file_info *s2);
  175. int sizecmp(struct file_info *s1, struct file_info *s2);
  176. int datecmp(struct file_info *s1, struct file_info *s2);
  177. int classcmp(struct file_info *s1, struct file_info *s2);
  178. int numcmp( struct file_info *s1, struct file_info *s2 );
  179. void QuickSort(char **av, int n);
  180. void DirQuickSort(char **av,int n,int (*func)(struct file_info *,struct file_info *), int rev, int fac);
  181. int filesize(char *name);
  182. char **and(char **av1, int ac1, char **av2, int ac2, int *ac, int base);
  183. char **without(char **av1, int ac1, char **av2, int ac2, int *ac, int base);
  184. char **or(char **av1, int ac1, char **av2, int ac2, int *ac, int base);
  185. void clear_archive_bit(char *name);
  186. char *itoa( int i );
  187. char *itok( int i );
  188. char *getaction( char *class, char *action );
  189. int doaction( char *file, char *action, char *args );
  190. void *salloc( int len );
  191. void *SAllocMem( long size, long req );
  192. void setioerror( int err );
  193. char *filemap( char *buf, int lcd );
  194. char *safegets( char *buf, FILE *in );
  195.  
  196. /* set.c */
  197. void init_mbase(void);
  198. void set_var(int level, char *name, char *str);
  199. void set_var_mem( int level, char *name, char *str );
  200. void update_sys_var( char *name );
  201. void set_var_n(int level, char *name, char *str, int n);
  202. void *get_var(int level, void *name);
  203. void unset_level(int level);
  204. void unset_var(int level, char *name);
  205. int do_unset_var(char *str, int level);
  206. int do_set_var(char *command, int level);
  207. void push_locals( struct VRoot *newroot );
  208. void pop_locals( void );
  209. int do_local(void);
  210.  
  211. /* rawcon.c */
  212. int newwidth(void);
  213. void initmap(void);
  214. char *rawgets(char line[], char prompt[]);
  215. void prepscroll(int fromtee);
  216. void quickscroll(void);
  217. void setrawcon( long flag, int ievent );
  218. int isconsole( BPTR fh );
  219. int do_keymap( void );
  220.  
  221. /* run.c */
  222. int do_run(char *str, int exec );
  223. char *dofind(char *cmd, char *ext, char *buf, char *path);
  224.  
  225. int setenv(char *var, char *val);
  226.  
  227.